Conversation
There was a problem hiding this comment.
Codex Review: Here are some suggestions.
Reply with @codex fix comments to fix any unresolved comments.
About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you open a pull request for review, mark a draft as ready, or comment "@codex review". If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex fix this CI failure" or "@codex address that feedback".
.github/workflows/release.yml
Outdated
| - name: Restore NuGet packages | ||
| working-directory: WordAI.VSTO | ||
| run: nuget restore WordAI.VSTO.csproj -SolutionDirectory . |
There was a problem hiding this comment.
[P0] Restore packages into wrong directory breaks publish step
The workflow restores NuGet packages from inside WordAI.VSTO with -SolutionDirectory ., which causes nuget to place the packages folder under WordAI.VSTO/. The project’s references point to ..\packages, so MSBuild cannot resolve them and the Publish step fails before any release artifacts are produced. Restoring from the repository root or setting -SolutionDirectory .. avoids the mismatch.
Useful? React with 👍 / 👎.
No description provided.